home *** CD-ROM | disk | FTP | other *** search
GIMP Script-Fu Script | 1999-07-21 | 5.2 KB | 167 lines |
- ; NEON
- ; Create a text effect that simulates neon lighting
-
- (define (set-pt a index x y)
- (prog1
- (aset a (* index 2) x)
- (aset a (+ (* index 2) 1) y)))
-
- (define (neon-spline1)
- (let* ((a (cons-array 6 'byte)))
- (set-pt a 0 0 0)
- (set-pt a 1 127 145)
- (set-pt a 2 255 255)
- a))
-
- (define (neon-spline2)
- (let* ((a (cons-array 6 'byte)))
- (set-pt a 0 0 0)
- (set-pt a 1 110 150)
- (set-pt a 2 255 255)
- a))
-
- (define (neon-spline3)
- (let* ((a (cons-array 6 'byte)))
- (set-pt a 0 0 0)
- (set-pt a 1 100 185)
- (set-pt a 2 255 255)
- a))
-
- (define (find-hue-offset color)
- (let* ((R (car color))
- (G (cadr color))
- (B (caddr color))
- (max-val (max R G B))
- (min-val (min R G B))
- (delta (- max-val min-val))
- (hue 0))
- (if (= max 0) 0
- (begin
- (cond ((= max-val R) (set! hue (/ (- G B) (* 1.0 delta))))
- ((= max-val G) (set! hue (+ 2 (/ (- B R) (* 1.0 delta)))))
- ((= max-val B) (set! hue (+ 4 (/ (- R G) (* 1.0 delta))))))
- (set! hue (* hue 60))
- (if (< hue 0) (set! hue (+ hue 360)))
- (if (> hue 360) (set! hue (- hue 360)))
- (if (> hue 180) (set! hue (- hue 360)))
- hue))))
-
- (define (script-fu-neon-logo text size font bg-color glow-color shadow)
- (let* ((img (car (gimp-image-new 256 256 RGB)))
- (tube-hue (find-hue-offset glow-color))
- (border (/ size 4))
- (shrink (/ size 14))
- (grow (/ size 40))
- (feather (/ size 5))
- (feather1 (/ size 25))
- (feather2 (/ size 12))
- (inc-shrink (/ size 100))
- (shadow-shrink (/ size 40))
- (shadow-feather (/ size 20))
- (shadow-offx (/ size 10))
- (shadow-offy (/ size 10))
- (tube-layer (car (gimp-text img -1 0 0 text border TRUE size PIXELS "*" font "*" "*" "*" "*")))
- (width (car (gimp-drawable-width tube-layer)))
- (height (car (gimp-drawable-height tube-layer)))
- (glow-layer (car (gimp-layer-new img width height RGBA_IMAGE "Neon Glow" 100 NORMAL)))
- (bg-layer (car (gimp-layer-new img width height RGB_IMAGE "Background" 100 NORMAL)))
- (shadow-layer (if (= shadow TRUE)
- (car (gimp-layer-new img width height RGBA_IMAGE "Shadow" 100 NORMAL))
- 0))
- (selection 0)
- (old-fg (car (gimp-palette-get-foreground)))
- (old-bg (car (gimp-palette-get-background))))
- (gimp-image-disable-undo img)
- (gimp-image-resize img width height 0 0)
- (gimp-image-add-layer img bg-layer 1)
- (if (not (= shadow 0))
- (begin
- (gimp-image-add-layer img shadow-layer 1)
- (gimp-edit-clear img shadow-layer)))
- (gimp-image-add-layer img glow-layer 1)
-
- (gimp-palette-set-background '(0 0 0))
- (gimp-selection-layer-alpha img tube-layer)
- (set! selection (car (gimp-selection-save img)))
- (gimp-selection-none img)
-
- (gimp-edit-clear img glow-layer)
- (gimp-edit-fill img tube-layer)
-
- (gimp-palette-set-background bg-color)
- (gimp-edit-fill img bg-layer)
-
- (gimp-selection-load img selection)
- (gimp-palette-set-background '(255 255 255))
- (gimp-edit-fill img tube-layer)
- (gimp-selection-shrink img shrink)
- (gimp-palette-set-background '(0 0 0))
- (gimp-edit-fill img selection)
- (gimp-edit-fill img tube-layer)
-
- (gimp-selection-none img)
- (if (not (= feather1 0)) (plug-in-gauss-rle 1 img tube-layer feather1 TRUE TRUE))
- (gimp-selection-load img selection)
- (if (not (= feather2 0)) (plug-in-gauss-rle 1 img tube-layer feather2 TRUE TRUE))
-
- (gimp-brightness-contrast img tube-layer -10 15)
- (gimp-selection-none img)
- (gimp-hue-saturation img tube-layer 0 tube-hue -15 70)
-
- (gimp-selection-load img selection)
- (gimp-selection-feather img inc-shrink)
- (gimp-selection-shrink img inc-shrink)
- (gimp-curves-spline img tube-layer 0 6 (neon-spline1))
-
- (gimp-selection-load img selection)
- (gimp-selection-feather img inc-shrink)
- (gimp-selection-shrink img (* inc-shrink 2))
- (gimp-curves-spline img tube-layer 0 6 (neon-spline2))
-
- (gimp-selection-load img selection)
- (gimp-selection-feather img inc-shrink)
- (gimp-selection-shrink img (* inc-shrink 3))
- (gimp-curves-spline img tube-layer 0 6 (neon-spline3))
-
- (gimp-selection-load img selection)
- (gimp-selection-grow img grow)
- (gimp-selection-invert img)
- (gimp-edit-clear img tube-layer)
- (gimp-selection-invert img)
-
- (gimp-selection-feather img feather)
- (gimp-palette-set-background glow-color)
- (gimp-edit-fill img glow-layer)
-
- (if (not (= shadow 0))
- (begin
- (gimp-selection-layer-alpha img tube-layer)
- (gimp-selection-shrink img shadow-shrink)
- (gimp-selection-feather img shadow-feather)
- (gimp-selection-translate img shadow-offx shadow-offy)
- (gimp-palette-set-background '(0 0 0))
- (gimp-edit-fill img shadow-layer)))
- (gimp-selection-none img)
-
- (gimp-layer-set-name tube-layer "Neon Tubes")
- (gimp-palette-set-background old-bg)
- (gimp-palette-set-foreground old-fg)
- (gimp-image-remove-channel img selection)
- (gimp-image-enable-undo img)
- (gimp-display-new img)))
-
-
- (script-fu-register "script-fu-neon-logo"
- "<Toolbox>/Xtns/Script-Fu/Logos/Neon"
- "Neon logos"
- "Spencer Kimball"
- "Spencer Kimball"
- "1997"
- ""
- SF-VALUE "Text String" "\"NEON\""
- SF-VALUE "Font Size (in pixels)" "150"
- SF-VALUE "Font" "\"Blippo\""
- SF-COLOR "Background Color" '(0 0 0)
- SF-COLOR "Glow Color" '(38 211 255)
- SF-TOGGLE "Create Shadow" FALSE)
-